Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 29, 2025

This PR contains the following updates:

Package Change Age Confidence
@rollup/plugin-commonjs (source) ^28.0.6 -> ^28.0.7 age confidence
@rollup/plugin-node-resolve (source) ^16.0.1 -> ^16.0.3 age confidence
esbuild ^0.25.10 -> ^0.25.11 age confidence
rollup (source) ^4.52.2 -> ^4.52.4 age confidence
vite (source) ^7.1.7 -> ^7.1.10 age confidence

Release Notes

rollup/plugins (@​rollup/plugin-commonjs)

v28.0.7

2025-10-14

Bugfixes
  • fix: avoid hoisting dynamically required node: builtins under strictRequires (#​1909)
rollup/plugins (@​rollup/plugin-node-resolve)

v16.0.3

2025-10-13

Bugfixes
  • fix: resolve bare targets of package "imports" using export maps; avoid fileURLToPath(null) (#​1908)

v16.0.2

2025-10-04

Bugfixes
  • fix: error thrown with empty entry (#​1893)
evanw/esbuild (esbuild)

v0.25.11

Compare Source

  • Add support for with { type: 'bytes' } imports (#​4292)

    The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing binary loader. Here's an example:

    import data from './image.png' with { type: 'bytes' }
    const view = new DataView(data.buffer, 0, 24)
    const width = view.getInt32(16)
    const height = view.getInt32(20)
    console.log('size:', width + '\xD7' + height)
  • Lower CSS media query range syntax (#​3748, #​4293)

    With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using min-/max- prefixes for older browsers. For example, the following CSS:

    @&#8203;media (640px <= width <= 960px) {
      main {
        display: flex;
      }
    }

    will be transformed like this with a target such as --target=chrome100 (or more specifically with --supported:media-range=false if desired):

    @&#8203;media (min-width: 640px) and (max-width: 960px) {
      main {
        display: flex;
      }
    }
rollup/rollup (rollup)

v4.52.4

Compare Source

2025-10-03

Bug Fixes
  • Fix an issue where the wrong branch of nullish coalescing was picked (#​6133)
Pull Requests

v4.52.3

Compare Source

2025-09-27

Bug Fixes
  • Fix check in native loader for environments that do not support reports (#​6123)
Pull Requests
vitejs/vite (vite)

v7.1.10

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v7.1.9

Compare Source

Reverts

v7.1.8

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 29, 2025
Copy link

coderabbitai bot commented Sep 29, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

Size Report

Bundles

File Size Gzip Brotli
runtime-dom.global.prod.js 102 kB 38.6 kB 34.8 kB
vue.global.prod.js 160 kB 58.7 kB 52.2 kB

Usages

Name Size Gzip Brotli
createApp (CAPI only) 46.7 kB 18.3 kB 16.7 kB
createApp 54.7 kB 21.3 kB 19.5 kB
createSSRApp 58.9 kB 23 kB 21 kB
defineCustomElement 60 kB 23 kB 21 kB
overall 68.8 kB 26.5 kB 24.2 kB

Copy link

pkg-pr-new bot commented Sep 29, 2025

Open in StackBlitz

@vue/compiler-core

npm i https://pkg.pr.new/@vue/compiler-core@13939

@vue/compiler-dom

npm i https://pkg.pr.new/@vue/compiler-dom@13939

@vue/compiler-sfc

npm i https://pkg.pr.new/@vue/compiler-sfc@13939

@vue/compiler-ssr

npm i https://pkg.pr.new/@vue/compiler-ssr@13939

@vue/reactivity

npm i https://pkg.pr.new/@vue/reactivity@13939

@vue/runtime-core

npm i https://pkg.pr.new/@vue/runtime-core@13939

@vue/runtime-dom

npm i https://pkg.pr.new/@vue/runtime-dom@13939

@vue/server-renderer

npm i https://pkg.pr.new/@vue/server-renderer@13939

@vue/shared

npm i https://pkg.pr.new/@vue/shared@13939

vue

npm i https://pkg.pr.new/vue@13939

@vue/compat

npm i https://pkg.pr.new/@vue/compat@13939

commit: 436eb9d

@renovate renovate bot force-pushed the renovate/build branch from 3edec9f to 2f8c3d6 Compare October 2, 2025 10:42
@renovate renovate bot changed the title chore(deps): update dependency rollup to ^4.52.3 chore(deps): update build Oct 2, 2025
@renovate renovate bot force-pushed the renovate/build branch 6 times, most recently from 60d0022 to 2071ffd Compare October 9, 2025 02:22
@renovate renovate bot force-pushed the renovate/build branch 2 times, most recently from 78addcb to c6e4e25 Compare October 14, 2025 15:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants